home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / whatview / wvprefs.i < prev    next >
Text File  |  1994-05-02  |  1KB  |  43 lines

  1.    include "exec/types.i"
  2.    include "exec/nodes.i"
  3.  
  4. ID_WVPR  EQU  $57565052
  5. ID_WVAC  EQU  $57564143
  6.  
  7.    STRUCTURE WVBASE,0
  8.       LONG   wv_AdrIdList
  9.       LONG   wv_AdrActionList
  10.       LONG   wv_AdrEmptyList
  11.       LABEL WVBASE_SIZE
  12.  
  13.    STRUCTURE ACTIONNODE,0
  14.       STRUCT    ac_Node,LN_SIZE     * node.name content the idstring of the whatis.library *
  15.       WORD      ac_ExecType         * exectype MODE_WB or MODE_CLI *
  16.       LONG      ac_Command          * String *
  17.       LONG      ac_CurrentDir       * String *
  18.       LONG      ac_Stack
  19.       LONG      ac_Priority
  20.       LONG      ac_NumArg
  21.       STRUCT    ac_ArgList,160
  22.       LONG      ac_cmd
  23.       LABEL ACTIONNODE_SIZE
  24.  
  25. MODE_WB   equ 0
  26. MODE_CLI  equ 1
  27.  
  28.    STRUCTURE WVARG,0
  29.       STRUCT wa_Node,LN_SIZE        * node.name content the filename *
  30.       LONG   wa_Lock                * the lock of the filename *
  31.       LONG   wa_Size                * the size of the filename *
  32.       LONG   wa_Date                * the date of the filename *
  33.       LONG   wa_IdString            * the idstring of the filename *
  34.       LABEL WVARG_SIZE
  35.  
  36.    STRUCTURE WVMSG,0
  37.       STRUCT wm_Msg,20
  38.       LONG   wm_Name
  39.       LONG   wm_Lock
  40.       LABEL WVMSG_SIZE
  41.  
  42.  
  43.